home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’89 / gadlife / source (ugly) / patch.menu.h < prev    next >
Encoding:
Text File  |  1989-05-06  |  381 b   |  8 lines  |  [TEXT/KAHL]

  1. typedef struct rgnList
  2.     {
  3.     struct rgnList    **next;        /* maintain a stack of these, for heierarchical menus.    */
  4.     RgnHandle        theRgn;        /* must draw to everything but the region to look good,    */
  5.     Rect            origRect;        /* but when it restores it copies the entire rectangle.    */
  6.     long            when;        /* when the screen shot was taken, in internal 'time'    */
  7.     } rgnList, *rgnListPtr, **rgnListHandle;
  8.